Learn R Programming

ibmdbR (version 1.34.3)

idaCreateView, idaDropView: Create or drop a view

Description

Use these functions to create or drop a view that is based on a ida.data.frame.

Usage

idaCreateView(x) 
idaDropView(v)

Arguments

x
ida.data.frame for which a view is to be created.
v
Name of the view to be dropped.

Value

  • The idaCreateView function returns the view name. The idaDropView function does not return a value.

Details

The idaCreateView function creates a view from the specified IDA data frame. The idaDropView function drops the specified view.

Examples

Run this code
bdf <- ida.data.frame('DB2INST1.SHOWCASE_SYSTEMS')

#Create a view based on the IDA data frame
vname <- idaCreateView(bdf)

#Drop the view
idaDropView(vname)

Run the code above in your browser using DataLab